Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

634366 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game

style.css cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game/style.css
116 Views
0 Comments
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}

index.html cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game/index.html
306 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Dot Connect Four</title>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lobster|Open+Sans"rel="stylesheet'><link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/191 - Dot Connect Game/script.js
175 Views
0 Comments
const initialState = {
player: 'yellow',
winner: false,
board: [[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],